home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / mpfeel.lha / MPFeel / Modules / slib:comlist.e < prev    next >
Text File  |  1992-10-06  |  322b  |  38 lines

  1. (defmodule slib:comlist (scheme) ()
  2.  
  3.   (slib:load "comlist")
  4.  
  5.   (export
  6.  
  7.     make-list
  8.     ; copy-list
  9.  
  10.     adjoin
  11.     union
  12.  
  13.     position
  14.  
  15.     reduce-init
  16.     reduce
  17.  
  18.     some
  19.     every
  20.     notevery
  21.     find-if
  22.     member-if
  23.     remove-if
  24.     remove-if-not
  25.     
  26.     ; nconc
  27.  
  28.     butlast
  29.  
  30.     and?
  31.     or?
  32.  
  33.   )
  34.  
  35. )
  36.  
  37. ;; eof
  38.